home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / stdio / rewind.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  103b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef rewind
  4.  
  5. void rewind(FILE *f)
  6. {
  7.     fseek(f,0L,SEEK_SET);
  8.     clearerr(f);
  9. }
  10.